@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Barlow+Condensed:wght@500;600;700&family=Work+Sans:wght@400;500;600;700&family=IBM+Plex+Mono:wght@500&display=swap');

:root{
  --navy: #14294D;
  --navy-2: #1E3A6E;
  --steel: #5B6470;
  --steel-light: #9AA3AE;
  --paper: #EDEFF2;
  --white: #FFFFFF;
  --safety: #F4B400;
  --safety-deep: #C98F00;
  --ink: #1B1F24;
  --line: #D7DBE1;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth; overflow-x:hidden; width:100%;}
body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:'Work Sans', sans-serif;
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
  width:100%;
  max-width:100vw;
  position:relative;
}
img{max-width:100%;display:block;}

/* ---------- SCROLL PROGRESS ---------- */
.scroll-progress{
  position:fixed; top:0; left:0; height:3px; width:0%;
  background:linear-gradient(90deg, var(--safety-deep), var(--safety));
  z-index:80;
  transition:width .08s linear;
}

.eyebrow{
  font-family:'Barlow Condensed', sans-serif;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:0.14em;
  font-size:0.82rem;
  color:var(--navy-2);
}
.mono{
  font-family:'IBM Plex Mono', monospace;
}

/* ---------- HEADER ---------- */
header{
  position:sticky; top:0; z-index:50;
  background:rgba(237,239,242,0.92);
  backdrop-filter:blur(6px);
  border-bottom:1px solid var(--line);
  box-shadow:0 0 0 rgba(20,41,77,0);
  transition:box-shadow .3s ease;
}
header.scrolled{box-shadow:0 6px 22px rgba(20,41,77,0.10);}
.header-inner{
  max-width:1100px; margin:0 auto;
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 24px;
  transition:padding .25s ease;
  width:100%;
}
header.scrolled .header-inner{padding:9px 24px;}
.logo-wrap{display:flex; align-items:center; gap:10px;}
.logo-wrap img{height:56px; width:auto; transition:height .25s ease, transform .2s ease;}
header.scrolled .logo-wrap img{height:48px;}
.logo-wrap:hover img{transform:scale(1.05);}
.header-cta{
  font-family:'Barlow Condensed', sans-serif;
  font-weight:600; letter-spacing:0.06em; text-transform:uppercase;
  font-size:0.85rem;
  background:var(--navy);
  color:var(--white);
  padding:10px 20px;
  border-radius:2px;
  text-decoration:none;
  border:1px solid var(--navy);
  transition:background .15s ease, transform .15s ease, box-shadow .15s ease;
  display:inline-block;
}
.header-cta:hover{background:var(--navy-2); transform:translateY(-2px); box-shadow:0 6px 14px rgba(20,41,77,0.25);}

/* ---------- HERO ---------- */
@keyframes fadeSlideUp{
  from{opacity:0; transform:translateY(26px);}
  to{opacity:1; transform:translateY(0);}
}
@keyframes floatBlob{
  0%{transform:translate(0,0) scale(1);}
  100%{transform:translate(-34px,26px) scale(1.08);}
}
.hero{
  max-width:1100px; margin:0 auto;
  padding:72px 24px 40px;
  position:relative;
  overflow:hidden;
}
.hero-glow{
  position:absolute;
  top:-160px; right:-120px;
  width:520px; height:520px;
  background:radial-gradient(circle at 32% 32%, rgba(244,180,0,0.32), rgba(30,58,110,0.22) 45%, transparent 72%);
  filter:blur(46px);
  border-radius:50%;
  animation:floatBlob 13s ease-in-out infinite alternate;
  pointer-events:none;
}
.hero .eyebrow{margin-bottom:18px; position:relative; animation:fadeSlideUp .7s cubic-bezier(.16,.84,.44,1) both;}
.hero h1{
  font-family:'Archivo Black', sans-serif;
  font-size:clamp(2.4rem, 6vw, 4.2rem);
  line-height:1.03;
  margin:0 0 22px;
  max-width:15ch;
  color:var(--navy);
  position:relative;
  animation:fadeSlideUp .8s cubic-bezier(.16,.84,.44,1) .12s both;
}
.hero p.lead{
  font-size:1.18rem;
  max-width:52ch;
  color:var(--steel);
  margin:0 0 34px;
  position:relative;
  animation:fadeSlideUp .8s cubic-bezier(.16,.84,.44,1) .26s both;
}
.hero-actions{
  display:flex; align-items:center; gap:22px; flex-wrap:wrap;
  position:relative;
  animation:fadeSlideUp .8s cubic-bezier(.16,.84,.44,1) .4s both;
}
.btn-primary{
  font-family:'Barlow Condensed', sans-serif;
  font-weight:700; letter-spacing:0.04em; text-transform:uppercase;
  font-size:1rem;
  background:var(--safety);
  color:var(--ink);
  padding:16px 34px;
  border-radius:2px;
  text-decoration:none;
  display:inline-block;
  border:1px solid var(--safety-deep);
  box-shadow:0 2px 0 var(--safety-deep);
  transition:transform .15s ease, box-shadow .2s ease;
  position:relative;
  overflow:hidden;
}
.btn-primary::after{
  content:'';
  position:absolute; top:0; left:-60%;
  width:35%; height:100%;
  background:linear-gradient(120deg, transparent, rgba(255,255,255,0.65), transparent);
  transform:skewX(-20deg);
  transition:left .6s ease;
}
.btn-primary:hover{transform:translateY(-2px); box-shadow:0 10px 22px rgba(244,180,0,0.4), 0 2px 0 var(--safety-deep);}
.btn-primary:hover::after{left:130%;}
.hero-note{font-size:0.9rem; color:var(--steel);}

/* meta / spec strip like a paint-can label */
.spec-strip{
  margin-top:48px;
  border:1px solid var(--navy);
  border-radius:2px;
  display:flex;
  flex-wrap:wrap;
  position:relative;
  animation:fadeSlideUp .8s cubic-bezier(.16,.84,.44,1) .54s both;
}
.spec-strip div{
  flex:1 1 auto;
  padding:14px 20px;
  font-family:'IBM Plex Mono', monospace;
  font-size:0.82rem;
  letter-spacing:0.04em;
  text-transform:uppercase;
  color:var(--navy);
  border-right:1px solid var(--navy);
  transition:background .2s ease;
}
.spec-strip div:hover{background:rgba(20,41,77,0.05);}
.spec-strip div:last-child{border-right:none;}
.spec-strip span{display:block; color:var(--steel-light); font-size:0.7rem; margin-bottom:3px;}

/* ---------- SECTION SHELLS ---------- */
section.block{
  max-width:1100px; margin:0 auto;
  padding:64px 24px;
}
section.block h2{
  font-family:'Archivo Black', sans-serif;
  font-size:clamp(1.5rem, 3.4vw, 2.1rem);
  color:var(--navy);
  margin:14px 0 24px;
}
.block-lead{
  max-width:62ch;
  color:var(--steel);
  font-size:1.05rem;
  margin-bottom:8px;
}

/* ---------- SCROLL REVEAL ---------- */
.js .reveal{
  opacity:0;
  transform:translateY(30px);
  transition:opacity .8s cubic-bezier(.16,.84,.44,1), transform .8s cubic-bezier(.16,.84,.44,1);
}
.js .reveal.in-view{opacity:1; transform:translateY(0);}

/* ---------- SWATCH SIGNATURE STRIP ---------- */
.swatch-band{
  background:var(--navy);
  padding:56px 24px 64px;
  overflow-x:hidden;
}
.swatch-inner{max-width:1100px; margin:0 auto; overflow-x:hidden;}
.swatch-inner .eyebrow{color:var(--safety); margin-bottom:8px;}
.swatch-inner h2{
  font-family:'Archivo Black', sans-serif;
  color:var(--white);
  font-size:clamp(1.4rem,3vw,1.9rem);
  margin:0 0 40px;
  max-width:26ch;
}
.swatch-strip{
  display:flex;
  gap:0;
  padding-left:10px;
}
.swatch{
  width:150px; height:190px;
  margin-left:-28px;
  border-radius:4px;
  box-shadow:0 10px 24px rgba(0,0,0,0.35);
  display:flex; flex-direction:column; justify-content:flex-end;
  padding:14px;
  transition:transform .2s ease, box-shadow .2s ease;
  cursor:default;
}
.swatch:first-child{margin-left:0;}
.swatch:hover{transform:translateY(-16px) rotate(0deg) !important; z-index:5; box-shadow:0 18px 30px rgba(0,0,0,0.45);}
.js .swatch{
  opacity:0;
  transform:translateY(-46px) rotate(var(--rot,0deg)) scale(.82);
  transition:opacity .65s cubic-bezier(.34,1.56,.64,1), transform .65s cubic-bezier(.34,1.56,.64,1), box-shadow .2s ease;
}
.js .swatch-band.in-view .swatch{
  opacity:1;
  transform:translateY(0) rotate(var(--rot,0deg)) scale(1);
}
.swatch-strip .swatch:nth-child(1){transition-delay:.05s;}
.swatch-strip .swatch:nth-child(2){transition-delay:.15s;}
.swatch-strip .swatch:nth-child(3){transition-delay:.25s;}
.swatch-strip .swatch:nth-child(4){transition-delay:.35s;}
.swatch-strip .swatch:nth-child(5){transition-delay:.45s;}
.swatch:hover{transition-delay:0s !important;}
.swatch span{
  font-family:'IBM Plex Mono', monospace;
  font-size:0.72rem;
  text-transform:uppercase;
  letter-spacing:0.05em;
}
.swatch b{
  display:block;
  font-family:'Barlow Condensed', sans-serif;
  font-weight:700;
  font-size:1.15rem;
  text-transform:uppercase;
}

/* ---------- CHECK GRIDS ---------- */
.grid-2{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:16px 28px;
  margin-top:28px;
}
.check-item{
  display:flex; gap:12px; align-items:flex-start;
  padding:16px 18px;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:3px;
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.check-item:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 24px rgba(20,41,77,0.1);
  border-color:var(--navy-2);
}
.check-item .mark{
  flex:0 0 auto;
  width:22px; height:22px;
  border-radius:50%;
  background:var(--navy);
  color:var(--white);
  font-size:0.8rem;
  display:flex; align-items:center; justify-content:center;
  font-weight:700;
  transition:transform .22s ease;
}
.check-item:hover .mark{transform:scale(1.15);}
.check-item.alt .mark{background:var(--safety); color:var(--ink);}
.check-item p{margin:0; font-size:0.98rem;}
.js .grid-2.reveal .check-item{
  opacity:0; transform:translateY(20px);
  transition:opacity .55s ease, transform .55s ease, box-shadow .22s ease, border-color .22s ease;
}
.js .grid-2.reveal.in-view .check-item{opacity:1; transform:translateY(0);}
.js .grid-2.reveal .check-item:nth-child(1){transition-delay:.05s;}
.js .grid-2.reveal .check-item:nth-child(2){transition-delay:.11s;}
.js .grid-2.reveal .check-item:nth-child(3){transition-delay:.17s;}
.js .grid-2.reveal .check-item:nth-child(4){transition-delay:.23s;}
.js .grid-2.reveal .check-item:nth-child(5){transition-delay:.29s;}
.js .grid-2.reveal .check-item:nth-child(6){transition-delay:.35s;}
.js .grid-2.reveal .check-item:nth-child(7){transition-delay:.41s;}
.js .grid-2.reveal .check-item:nth-child(8){transition-delay:.47s;}
/* hover should always respond instantly, regardless of reveal stagger delay */
.check-item:hover{transition-delay:0s !important;}

/* ---------- APPLY FORM ---------- */
.apply-band{
  background:var(--white);
  border-top:1px solid var(--line);
}
.apply-inner{
  max-width:640px; margin:0 auto;
  padding:64px 24px 90px;
}
.apply-inner .eyebrow{margin-bottom:10px;}
.apply-inner h2{
  font-family:'Archivo Black', sans-serif;
  color:var(--navy);
  font-size:clamp(1.5rem,3.4vw,2rem);
  margin:0 0 10px;
}
.apply-inner p.block-lead{margin-bottom:36px;}

.field{margin-bottom:24px;}
.field label{
  display:block;
  font-weight:600;
  font-size:0.95rem;
  margin-bottom:8px;
  color:var(--ink);
}
.field label .req{color:#C0392B;}
.field input[type=text], .field input[type=email], .field input[type=tel]{
  width:100%;
  padding:13px 14px;
  border:1px solid var(--line);
  border-radius:3px;
  font-family:'Work Sans', sans-serif;
  font-size:1rem;
  background:var(--paper);
  color:var(--ink);
  transition:outline-color .15s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.field input:focus, .field select:focus{
  outline:2px solid var(--navy-2);
  outline-offset:1px;
  background:var(--white);
  box-shadow:0 0 0 4px rgba(30,58,110,0.1);
}

.phone-box{
  border:1.5px solid var(--navy-2);
  border-radius:5px;
  padding:18px;
  background:#F3F6FC;
  transition:box-shadow .2s ease;
}
.phone-box:focus-within{box-shadow:0 0 0 4px rgba(30,58,110,0.12);}
.phone-box .row{display:flex; align-items:center; justify-content:space-between; margin-bottom:10px;}
.phone-box .row-label{
  width:auto !important;
  display:flex; align-items:center; gap:8px;
  font-weight:700; color:var(--navy-2); font-size:0.98rem;
}
.phone-box .badge{
   width:auto !important;
}
.badge{
  font-family:'Barlow Condensed', sans-serif;
  font-weight:700; letter-spacing:0.05em; text-transform:uppercase;
  font-size:0.7rem;
  background:var(--navy-2); color:var(--white);
  padding:4px 10px; border-radius:20px;
}
.phone-box input{
  width:100%;
  padding:13px 14px;
  border:1px solid var(--line);
  border-radius:3px;
  font-size:1rem;
  background:var(--white);
}
.phone-hint{font-size:0.85rem; color:var(--steel); margin-top:8px;}

.upload-box{
  border:1px dashed var(--steel-light);
  border-radius:3px;
  padding:18px;
  background:var(--paper);
  display:flex; align-items:center; gap:14px; flex-wrap:wrap;
  transition:border-color .2s ease, background .2s ease;
}
.upload-box:hover, .upload-box:focus-within{border-color:var(--navy-2); background:#F3F6FC;}
.upload-box input[type=file]{font-family:'Work Sans', sans-serif; font-size:0.92rem;}
.file-hint{font-size:0.85rem; color:var(--steel); font-weight:400;}

.radio-group{display:flex; gap:24px; margin-top:6px;}
.radio-option{display:flex; align-items:center; gap:8px; font-size:0.98rem;}
.radio-option input{width:18px; height:18px; accent-color:var(--navy-2);}

.submit-btn{
  width:100%;
  font-family:'Barlow Condensed', sans-serif;
  font-weight:700; letter-spacing:0.05em; text-transform:uppercase;
  font-size:1.08rem;
  background:var(--navy);
  color:var(--white);
  padding:18px;
  border:none;
  border-radius:30px;
  cursor:pointer;
  margin-top:12px;
  transition:background .15s ease;
}
.submit-btn:hover{background:var(--navy-2);}

.form-note{
  font-size:0.82rem; color:var(--steel); margin-top:16px; text-align:center;
}

.success-panel{
  display:none;
  text-align:center;
  padding:40px 20px;
}
.success-panel .mark-big{
  width:56px; height:56px; border-radius:50%;
  background:var(--navy); color:var(--white);
  display:flex; align-items:center; justify-content:center;
  font-size:1.6rem; margin:0 auto 20px;
}
.success-panel h3{font-family:'Archivo Black', sans-serif; color:var(--navy); margin-bottom:10px;}
.success-panel p{color:var(--steel); max-width:44ch; margin:0 auto;}

/* ---------- FOOTER ---------- */
footer{
  background:var(--navy);
  color:#B9C3D4;
  padding:36px 24px;
}
.footer-inner{
  max-width:1100px; margin:0 auto;
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:14px;
}
.footer-inner img{height:48px;}
.footer-inner p{margin:0; font-size:0.85rem;}

@media (max-width:640px){
  .grid-2{grid-template-columns:1fr;}
  .spec-strip div{border-right:none; border-bottom:1px solid var(--navy);}
  .spec-strip div:last-child{border-bottom:none;}
  .swatch{width:110px; height:150px; margin-left:-20px; flex:0 0 auto;}
  .swatch:first-child{margin-left:0;}
  .swatch b{font-size:0.95rem;}
  .swatch-strip{
    overflow-x:auto;
    padding:6px 6px 14px 6px;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:thin;
  }
  .swatch:hover{transform:none !important;}
}
.testimonial-section{
    padding:80px 20px;
    background:#fff;
}

.container-x-sm{
    max-width:900px;
    margin:auto;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:42px;
    font-weight:700;
    margin-bottom:10px;
    color:var(--navy);
}

.section-title p{
    color:#777;
    font-size:18px;
}

.testimonial-wrapper{
    overflow:hidden;
}

.testimonial-track{
    display:flex;
    gap:24px;
    transition:.5s ease;
}

.testimonial-card{
    flex:0 0 calc(50% - 12px);
    background:var(--paper);
    border:1px solid #eadfce;
    border-radius:20px;
    padding:32px;
    box-sizing:border-box;
    min-height:280px;
}

.quote{
    color:#d8a11c;
    font-size:48px;
    line-height:1;
    margin-bottom:10px;
}

.message{
    color:#333;
    line-height:1.6;
    font-size:15px;
    margin-bottom:20px;
}

.author{
    display:flex;
    align-items:center;
    gap:14px;
}

.avatar{
    width:48px;
    height:48px;
    border-radius:50%;
    background:#f6b32d;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
}

.author h4{
    margin:0;
    font-size:16px;
}

.author span{
    color:#777;
    font-size:12px;
}

.testimonial-nav{
    display:flex;
    justify-content:center;
    gap:14px;
    margin-top:40px;
}

.testimonial-nav button{
    width:35px;
    height:35px;
    border-radius:50%;
    border:1px solid #ddd;
    background:#fff;
    cursor:pointer;
    font-size:10px;
    transition:.3s;
}

.testimonial-nav button:hover{
    background:#f6b32d;
    color:#fff;
}

@media(max-width:768px){

    .testimonial-card{
        flex:0 0 100%;
    }

    .section-title h2{
        font-size:32px;
    }

}
.office-section{
    padding:90px 20px;
    //background:#faf8f5;
}

.office-section .container{
    max-width:1180px;
    margin:auto;
}

.section-header{
    text-align:center;
    margin-bottom:55px;
}

.section-header h2{
    margin:0;
    font-size:46px;
    font-weight:700;
    color:#222;
}

.section-header p{
    margin-top:18px;
    font-size:20px;
    color:#8b6f56;
}

.office-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.office-card{
    background:#fff;
    border:1px solid #e9d8c8;
    border-radius:22px;
    overflow:hidden;
    transition:.35s;
}

.office-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.08);
}

.office-card img{
    width:100%;
    height:235px;
    object-fit:cover;
    display:block;
}

.office-content{
    padding:22px;
    text-align:center;
}

.office-content h3{
    margin:0 0 10px;
    font-size:16px;
    font-weight:600;
    color:#222;
}

.office-content p{
    margin:0;
    color:#8b6f56;
    font-size:0.75rem;
    line-height:1.2;
}

/* Tablet */

@media (max-width:992px){

    .office-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* Mobile */

@media (max-width:768px){

    .office-section{
        padding:70px 18px;
    }

    .section-header h2{
        font-size:36px;
    }

    .section-header p{
        font-size:18px;
    }

    .office-grid{
        grid-template-columns:1fr;
    }

    .office-card img{
        height:240px;
    }

    .office-content h3{
        font-size:16px;
    }

    .office-content p{
        font-size:0.75rem;
    }

}
